--- /dev/null
+From: "Matteo F. Vescovi" <mfv.debian@gmail.com>
+Date: Tue, 7 Feb 2012 14:23:57 +0100
+Subject: Fix_FTFS_previously_corrected_by_NMU
+
+Fix "FTBFS: babl-model.c:49:7:
+error: format not a string literal and
+no format arguments [-Werror=format-security]"
+
+Closes: #643356
+Thanks: Bart Martens
+Git-Dch: Short
+---
+ babl/babl-model.c | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/babl/babl-model.c b/babl/babl-model.c
+index 5fd4908..16a99b2 100644
+--- a/babl/babl-model.c
++++ b/babl/babl-model.c
+@@ -46,7 +46,7 @@ create_name (const char *name,
+ return name;
+ while (components--)
+ {
+- sprintf (p, (*component)->instance.name);
++ sprintf (p, "%s", (*component)->instance.name);
+ p += strlen ((*component)->instance.name);
+ component++;
+ }
+--
+++ /dev/null
-From: "Matteo F. Vescovi" <mfv.debian@gmail.com>
-Date: Tue, 7 Feb 2012 14:23:57 +0100
-Subject: Fix_FTFS_previously_corrected_by_NMU
-
-Fix "FTBFS: babl-model.c:49:7:
-error: format not a string literal and
-no format arguments [-Werror=format-security]"
-
-Closes: #643356
-Thanks: Bart Martens
-Git-Dch: Short
----
- babl/babl-model.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/babl/babl-model.c b/babl/babl-model.c
-index 5fd4908..16a99b2 100644
---- a/babl/babl-model.c
-+++ b/babl/babl-model.c
-@@ -46,7 +46,7 @@ create_name (const char *name,
- return name;
- while (components--)
- {
-- sprintf (p, (*component)->instance.name);
-+ sprintf (p, "%s", (*component)->instance.name);
- p += strlen ((*component)->instance.name);
- component++;
- }
---
-0001-Fix_FTFS_previously_corrected_by_NMU.patch
+0001-Fix_FTBFS_previously_corrected_by_NMU.patch